github.com/go-faster/errors.printer.Flag (method, view implemented interface methods)

18 uses

	github.com/go-faster/errors (current package)
		adaptor.go#L39: 		if s.Flag('#') {
		adaptor.go#L45: 		} else if s.Flag('+') {
		adaptor.go#L102: 		if s.Flag('-') {
		adaptor.go#L105: 		if s.Flag('+') {
		adaptor.go#L108: 		if s.Flag(' ') {

	fmt
		print.go#L48: 	Flag(c int) bool
		print.go#L85: 		if state.Flag(int(c)) { // The argument is an int for historical reasons.

	go.uber.org/multierr
		error.go#L250: 	if c == 'v' && f.Flag('+') {

	math/big
		ftoa.go#L504: 		if s.Flag(' ') {
		ftoa.go#L508: 	case s.Flag('+'):
		ftoa.go#L510: 	case s.Flag(' '):
		ftoa.go#L520: 	case s.Flag('0') && !x.IsInf():
		ftoa.go#L525: 	case s.Flag('-'):
		intconv.go#L94: 	case s.Flag('+'): // supersedes ' ' when both specified
		intconv.go#L96: 	case s.Flag(' '):
		intconv.go#L102: 	if s.Flag('#') {
		intconv.go#L148: 		case s.Flag('-'):
		intconv.go#L151: 		case s.Flag('0') && !precisionSet: